home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / regdll / regconst.ba_ / regconst.ba
Encoding:
Text File  |  1996-02-11  |  832 b   |  20 lines

  1. Attribute VB_Name = "RegSrvConstants"
  2. Attribute VB_Description = "This is the contants file that needs to be loaded into each project that uses an RegDB object."
  3. Option Explicit
  4.  
  5.     'Error return values
  6.     Public Const gknRSErrInvalidSection As Integer = 1001
  7.     Public Const gknRSErrInvalidKey As Integer = 1002
  8.     Public Const gknRSErrRegBaseNotRegistered As Integer = 1003
  9.     Public Const gknRSErrInvalidHKey As Integer = 1004
  10.     Public Const gknRSErrRemoveKey As Integer = 1005
  11.     Public Const gknRSErrRemoveSection As Integer = 1006
  12.     Public Const gknRSErrSetValue As Integer = 1007
  13.     
  14.     'Reg Key ROOT Types
  15.     Public Const HKEY_CLASSES_ROOT = &H80000000
  16.     Public Const HKEY_CURRENT_USER = &H80000001
  17.     Public Const HKEY_LOCAL_MACHINE = &H80000002
  18.     Public Const HKEY_USERS = &H80000003
  19.  
  20.